home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Lotus Symphony Pop-up Menu Configuration
- ;
- Comment ("Configured for Symphony")
-
- ;
- ; Parameters
- ;
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- EnableBeep (Yes) ; Beeps if wrong button pressed with menu up
- Position (LowerLeft(2,22)) ; Put menus in lower left corner
- ;
- ; Cursor Definitions
- ;
-
- Calc: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- Hysteresis (1,1)
- Sensitivity (13,8)
- )
- Word: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- Hysteresis (3,4)
- Sensitivity (2,4)
- )
- ;
- ; Button Definitions
- ;
- LBM: Button (Menu(Main)) ; Left button, Main Menu
- MB: Button (Keys([Enter])) ; Middle button
- RB: Button (Keys([Esc])) ; Right button
- LBC: Button (Menu(Sheet)) ; Left button, Calc Menu
- LBW: Button (Menu(Doc)) ; Left button, Word Menu
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main")
- Item ("Menu", Keys([F10]))
- Item ("Services", Keys([F9]))
- Item ("Anchor", Keys("."))
- Item ("Sheet Mode", Button(LBC),
- Cursor(Calc))
- Item ("Doc Mode", Button(LBW),
- Cursor(Word))
- Item ("Next Window", Keys([F6]))
- Item ("Zoom", Keys([a-F6]))
- Item ("Change Type", Keys([a-F10]))
- Item ("Switch Type", Keys([a-F9]))
- Item ("Update Windows", Keys([a-F8]))
- Item ("Help", Keys([F1]))
- )
-
- Sheet: Menu
- (
- Title ("Sheet")
- Item ("Menu", Keys([F10]))
- Item ("Services", Keys([F9]))
- Item ("@Sum(", Keys("@Sum("))
- Item ("Anchor", Keys("."))
- Item (")", Keys(")"))
- Item ("(", Keys("("))
- Item ("+", Keys("+"))
- Item ("-", Keys("-"))
- Item ("*", Keys("*"))
- Item ("/", Keys("/"))
- Item ("Absolute", Keys([F4]))
- Item ("Edit", Keys([F2]))
- Item ("Recalc", Keys([F8]))
- Item ("Range Name", Keys([F3]))
- Item ("Home", Keys([Home]))
- Item ("End", Keys([End]))
- Item ("Main Menu", Menu(Main), Button(LBM))
- )
-
- ;
- ; Mouse Definition
-
- Doc: Menu
- (
- Title ("Doc Menu")
- Item ("Menu", Keys([F10]))
- Item ("Services", Keys([F9]))
- Item ("Where Am I?", Keys([a-F2]))
- Item ("Justify", Keys([F2]))
- Item ("Split Line", Keys([a-F3]))
- Item ("Center Line", Keys([a-F4]))
- Item ("Indent Line", Keys([F3]))
- Item ("Erase Block", Keys([F4]))
- Item ("Compose", Keys([a-F1]))
- Item ("Goto", Keys([F5]))
- Item ("End", Keys([End]))
- Item ("Motion Menu", Menu(Motion))
- Item ("Main Menu", Menu(Main),Button(LBM),
- Cursor(Calc))
- )
- ;
- Motion: Menu
- (
- Title ("Motion Menu")
- Item ("Word left", Keys([c-Left]))
- Item ("Word right", Keys([c-Right]))
- Item ("Start of line", Keys([End] [Left]))
- Item ("End of line", Keys([End] [Right]))
- Item ("Start of paragraph", Keys([End] [Up]))
- Item ("End of paragraph", Keys([End] [Down]))
- Item ("Page up", Keys([PgUp]))
- Item ("Page down", Keys([PgDn]))
- Item ("Start of document", Keys([Home]))
- Item ("End of document", Keys([End] [Home]))
- )
- ;
- Mouse
- (
- Left (LBM)
- Middle (MB)
- Right (RB)
- LeftRight (MB)
- Cursor (Calc)
- )